home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / dsp / dspgroup / firiir.arc / README.LIS < prev    next >
Encoding:
File List  |  1986-01-18  |  1.4 KB  |  57 lines

  1. REFERENCE:
  2.  Application Report: "Implementation of FIR/IIR Filters with the
  3.  TMS32010/TMS32020," Lovrich and Simar,
  4.  Digital Signal Processing Applications with the TMS320 Family, Texas
  5.  Instruments Inc.
  6.  
  7.  
  8.  There are six filter programs contained in this directory:
  9.  
  10.  1. FIRBPASS.ASM
  11.  2. FIDDIF.ASM
  12.  3. IIR4CAS.ASM
  13.  4. IIR4DIR.ASM
  14.  5. IIR4PAR.ASM
  15.  6. SFIR.ASM
  16.  
  17.  Program #6, SFIR.ASM, is written exclusively for the TMS32020 Digital
  18.  signal Processor. The rest of the programs use the TMS32010 instruction
  19.  set. Since the TMS32020 instruction set is a superset of the TMS32010
  20.  instruction set, the user may re-assemble the code using the TMS32020
  21.  assembler, with minor changes to the initialization section of the
  22.  programs, using the following example as a model.
  23.  
  24.  o Section of TMS32010 code (from FIRBPASS.ASM program)
  25.  
  26.             .
  27.             .
  28.             .
  29.           LARK  AR0,CLOCK
  30.           LARK  AR1,>29
  31.           LACK  SMP
  32.    LOAD   LARP  AR0
  33.           TBLR  *-,AR1
  34.           SUB   ONE
  35.           BANZ  LOAD
  36.             .
  37.             .
  38.             .
  39.  
  40.  o TMS32020 modifications
  41.  
  42.             .
  43.             .
  44.             .
  45.           LACK  MD
  46.           TBLR  MODE
  47.           OUT   MODE,PA0
  48.           LACK  SMP
  49.           TBLR  CLOCK
  50.           OUT   CLOCK,PA1
  51.           LARK  AR0,H39
  52.           RPTK  >27
  53.           BLKP  CTABLE,*-
  54.             .
  55.             .
  56.             .
  57.